home *** CD-ROM | disk | FTP | other *** search
/ Comic Book Maker: The Smurfs / COMIC.iso / mac / data_m / CBA2_40 / 00019_credit-quit frameScript.ls < prev    next >
Encoding:
Text File  |  2001-02-22  |  304 b   |  22 lines

  1. property quitTimer
  2. global gObj5
  3.  
  4. on exitFrame me
  5.   if voidp(quitTimer) then
  6.     set quitTimer to the ticks + (7 * 60)
  7.   end if
  8.   go(the frame)
  9. end
  10.  
  11. on idle me
  12.   if quitTimer then
  13.     if the ticks > quitTimer then
  14.       mouseDown(me)
  15.     end if
  16.   end if
  17. end
  18.  
  19. on mouseDown me
  20.   terminateProgram(gObj5)
  21. end
  22.